Experiment Overview

Shock waves are one of the most dramatic phenomena in compressible flow — a razor-thin region where pressure, temperature, and density jump discontinuously. They appear inside nozzles, around supersonic bodies, and at control surface impingement points. Schlieren imaging makes them visible without touching the flow, an elegant optical technique used in supersonic aircraft testing, ballistic research, and scramjet development. This lab introduced blowdown supersonic wind tunnel operation and applied Schlieren photography to characterize a normal shock inside the nozzle.

Wind tunnel dryer unit and air compressor storage tank in the ERAU blowdown supersonic facility
Figure 1: Wind Tunnel Dryer
Dryer and air storage system – second view showing pressurized supply plumbing
Figure 2: Air Compressor
Full lab setup showing the supersonic wind tunnel test section, PCO camera, and air compressor in the background
Figure 3: Air Storage Tank

Equipment & Tools

Approach & Key Equations

The ERAU blowdown tunnel stores compressed air, releases it through a pressure regulator into a convergent-divergent nozzle, and exhausts through a silencer. Thirteen static taps sampled the floor pressure distribution during steady-state operation (identified from the time history as rows 1,653–2,103). Total pressure was back-calculated at the throat assuming Mach 1 flow, and the nozzle pressure ratio was compared against the critical value to confirm shock presence:

NPR = P0 / Pexit     Shock strength S = Pafter / Pbefore

Mass flow rate was computed from isentropic choked-flow theory. Schlieren images were captured simultaneously to visually confirm shock position and morphology.

Main ball valve at the base of the air storage tank controlling flow into the wind tunnel
Figure 4: Main ball valve controlling flow into the wind tunnel
Pressure regulator and nozzle inlet assembly
Figure 5: Pressure regulator and nozzle inlet assembly
C-D nozzle test section with Schlieren optical components mounted on the optical table
Figure 6: Wind Tunnel Quick-Disconnect
Schlieren imaging setup – mirror mount, knife edge, and PCO camera aligned on the optical table
Figure 7: Schlieren imaging setup — mirror mount, knife edge, and PCO camera
Wind tunnel test section showing pressure tap tubes connected to the nozzle floor
Figure 8: Supersonic Wind Tunnel Nozzle
Convergent-divergent nozzle test section with mirror assembly visible
Figure 9: Wind Tunnel Silencer

Key Results

Schlieren image showing the normal shock inside the diverging nozzle section
Figure 10: Schlieren Image of Shock
Second Schlieren image of the normal shock – clearer view of shock position and expansion fans
Figure 11: Schlieren Image of Shock
Static pressure vs tap position along the nozzle – pressure drop and sharp spike at shock location
Figure 12: Pressure vs Position in Wind Tunnel
Static pressure vs data row showing the steady-state window used for analysis
Figure 13: Pressure Distribution vs Row Points

MATLAB Code

Raw pressure data was time-averaged over the steady-state window, augmented with atmospheric pressure, and used to back-calculate total pressure and compute NPR, shock strength, and mass flow rate.

% Steady-state average + atmospheric correction
range_ss  = tempData(1653:2103, :);
dataframe = mean(range_ss) + Patm;       % 13 taps (psi)

% Back-calculate total pressure from throat (M = 1)
P0    = dataframe(2) / (1 + (y-1)/2)^(-y/(y-1));

% NPR and shock strength
NPR   = P0 / mean(dataframe(11));        % = 3.932
shock = dataframe(10) / dataframe(9);    % = 1.614  (S = P_after/P_before)

% Choked-flow mass rate (lbm/s)
a    = sqrt(y * R * T);
mdot = Ath * (P0/a) * sqrt(y) * ((2/(y+1))^((y+1)/(2*(y-1)))) * 32.174;

Valuable Takeaways

← Back to Experimental Aerodynamics Labs